go.uber.org/mock/gomock.Call.methodType (field)

15 uses

	go.uber.org/mock/gomock (current package)
		call.go#L30: 	methodType reflect.Type // the type of the method
		call.go#L79: 		t: t, receiver: receiver, method: method, methodType: methodType,
		call.go#L121: 		if c.methodType.NumIn() != ft.NumIn() {
		call.go#L127: 					c.receiver, c.method, ft.NumIn(), c.methodType.NumIn(), c.origin)
		call.go#L162: 		if c.methodType.NumIn() != ft.NumIn() {
		call.go#L168: 					c.receiver, c.method, ft.NumIn(), c.methodType.NumIn(), c.origin)
		call.go#L191: 	mt := c.methodType
		call.go#L239: 	mt := c.methodType
		call.go#L325: 	if !c.methodType.IsVariadic() {
		call.go#L340: 		if len(c.args) < c.methodType.NumIn()-1 {
		call.go#L342: 				c.origin, len(c.args), c.methodType.NumIn()-1)
		call.go#L344: 		if len(c.args) != c.methodType.NumIn() && len(args) != len(c.args) {
		call.go#L354: 			if i < c.methodType.NumIn()-1 {
		call.go#L382: 			vArgsType := c.methodType.In(c.methodType.NumIn() - 1)